home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devAddrs.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  37 lines

  1. /*
  2.  * devAddrs.h --
  3.  *
  4.  *     Device and interrupt vector addresses for Sun-4's.
  5.  *
  6.  * Copyright 1985, 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devAddrs.h,v 9.1 89/10/26 11:30:01 mgbaker Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVADDRS
  19. #define _DEVADDRS
  20.  
  21. #define    DEV_KBD_ADDR            0xffd00004
  22. #define    DEV_MOUSE_ADDR            0xffd00000
  23. #define    DEV_SERIALA_ADDR        0xffd02004
  24. #define    DEV_SERIALB_ADDR        0xffd02000
  25. #define    DEV_TIMER_ADDR            0xffd06000
  26. #define    DEV_INTERRUPT_REG_ADDR        0xffd0a000
  27. #define    DEV_EE_PROM_ADDR        0xffd04000
  28. #define    DEV_FRAME_BUF_ADDR        0xffd40000
  29.  
  30. /*
  31.  * Interrupt vector assignments:
  32.  */
  33.  
  34. #define DEV_UART_VECTOR            30
  35.  
  36. #endif /* _DEVADDRS */
  37.